home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
TemaCD
/
RCEdit
/
RCEdit.CAB
/
Scrolling Text - Form.js
< prev
next >
Wrap
Text File
|
1996-09-30
|
504b
|
24 lines
// Ticker message in a form box
var timerID = null;
var timerRunning = false;
var id,pause=0,position=0;
function ticker() {
var i,k,msg=" THIS IS WHERE YOUR MESSAGE GOES ";
k=(75/msg.length)+1;
for(i=0;i<=k;i++) msg+=" "+msg;
document.scroll_box.ticker.value=msg.substring(position,position+75);
if(position++==38) position=0;
id=setTimeout("ticker()",1000/10); }
function action() {
if(!pause) {
clearTimeout(id);
pause=1; }
else {
ticker();
pause=0; }
}